home *** CD-ROM | disk | FTP | other *** search
/ The Guided Tour of Multimedia (Second Edition) / The Guided Tour of Multimedia (Second Edition).iso / trials / director / evalcopy / director.z / NAVIGATR.DIR / 00308_Field_308.txt < prev    next >
Text File  |  1994-06-14  |  1KB  |  35 lines

  1. FURNITUR.Dir, 1
  2. -- *********************************************************************
  3. -- called when the user clicks the mouse on the Menu Bar Sprite (channel 2)
  4. -- the handler determine the horizontal position of the mouse and deduces the 
  5. -- menu item that was clicked. Then it calls the appropriate movie.
  6. on bartender
  7.   put the mouseH into HortPos
  8.   if HortPos < 123 then
  9.     -- furniture menu item clicked
  10.   else
  11.     if HortPos < 273 then
  12.       -- philanthropy menu item clicked
  13.       -- go to movie "PHILANTH.DIR" 
  14.       play movie "PHILANTH.DIR" 
  15.     else
  16.       if HortPos < 385 then
  17.         -- learning menu item clicked
  18.         --go to movie "LEARNING.DIR" 
  19.         play movie "LEARNING.DIR" 
  20.       else
  21.         if HortPos < 440 then
  22.           -- luck menu item clicked
  23.           -- go to movie "LUCK.DIR"
  24.           play movie "LUCK.DIR"  
  25.         else
  26.           -- help  menu item clicked
  27.           -- go to movie "HELP.DIR"
  28.           play movie "HELP.DIR"  
  29.         end if
  30.       end if
  31.     end if
  32.   end if
  33. end bartender
  34.  
  35.